-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add some (but not all) docs for the Rust crate #696
Conversation
We're not yet complete, but it's a start.
@@ -155,6 +155,7 @@ bench = false # TODO fix this benchmark | |||
required-features = ["parquet_compression"] | |||
|
|||
[package.metadata.docs.rs] | |||
rustdoc-args = ["--cfg", "docsrs"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh I've been wondering how to get the feature flag badges in the docs! That looks great!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is amazing, thank you!
Co-authored-by: Kyle Barron <[email protected]>
Co-authored-by: Kyle Barron <[email protected]>
Co-authored-by: Kyle Barron <[email protected]>
As a general note, as I was adding |
Co-authored-by: Kyle Barron <[email protected]>
Co-authored-by: Kyle Barron <[email protected]>
Co-authored-by: Kyle Barron <[email protected]>
Co-authored-by: Kyle Barron <[email protected]>
Co-authored-by: Kyle Barron <[email protected]>
24a4a8c
to
39805e9
Compare
39805e9
to
5cd0e76
Compare
Thanks! |
If it's ok, I'd be stoked to get a v0.3.0 release of **geoarrow** — some of my **stac-geoparquet** is getting close to being release-able. Here's a checklist of things that have been mentioned as part of a v0.3 (including #628 (comment) and https://github.com/geoarrow/geoarrow-rs/milestone/3): - #660 is done ✅ - Some (but not all) of the doc updates are done in #696, and I've got a tracking issue for the rest in #689 - "Broader support for 3d geometries" isn't done as far as I know, but I haven't really been touching that at all yet - #539 is a Python thing, not a Rust crate thing As a part of this release PR I've updated our deps when possible (`sqlx` will require code change to support an update so I haven't done that one).
Includes:
Table::from_arrow_and_geometry
to make the argument order the same asTable::try_new
dbg!
statement in src/array/coord/separated/array.rsmod-name/mod.rs
modules up a level (table.rs
andchunked_array.rs
)#![deny(missing_docs)]
tolib.rs
, and then#![allow(missing_docs)]
on the "deep" modules (e.g.algorithm
,array
)NB I've updated #689 with a checklist to track progress on the "deep" modules